home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / doom / ldhe-src.0 / ldhe-src / dehacked / source / screen.h < prev    next >
Text File  |  1995-04-19  |  898b  |  25 lines

  1.  
  2. const char *ul[2] = { "//#//", "╔┌█╒╓" };
  3. const char *ur[2] = { "\\#\\", "╗┐█╕╖" };
  4. const char *ll[2] = { "\\#\\", "╚└█╘╙" };
  5. const char *lr[2] = { "//#//", "╝┘█╛╜" };
  6. const char *hz[2] = { "=-#=-", "═─█═─" };
  7. const char *vt[2] = { "||#||", "║│█│║" };
  8. const char blank[2] = { ' ', '░' };
  9.  
  10. void Blankwindow(char attr, int left, int top, int right, int bot);
  11. void clearscreen(char attr, char fill);
  12. void clsMCGA(void);
  13. void CPrintfXY(int x, int y, char *string, ...);
  14. void CPutsXY(int x, int y, char *string);
  15. void Drawframe(int type, unsigned char attr, int left, int top, int right,
  16.                     int bot);
  17. void MCGAPutsXY (int x, int y, char *string, unsigned char col);
  18. //void Putattr(unsigned char attr, int col, int row);
  19. //void putpix(unsigned int x, unsigned int y, int col);
  20. void setpalette(char palette[768]);
  21. void setpos(int x, int y);
  22. void toMCGA(void);
  23. void totext(void);
  24. void WipeScreen(void);
  25.